
/* Navigation Bar */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#F7F6F3;
}

/* Header */

header{
    background: #F8F1E5;
    padding:20px 0;
    position:sticky;
    top:0;
    z-index:100;
}

.container{
    width:90%;
    margin:auto;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:100px;
    height:auto;
    display:block;
}

nav ul{
    list-style:none;
    display:flex;
    gap:40px;
}

nav ul li a{
    text-decoration:none;
    color:#1F335C;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#D8B06A;
}

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#D8B06A;
    color:#1F335C;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}
.enquiry-btn{
    background:#D8B06A;
    color:#1F335C;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
}
/* Navigation Bar Close */

/* ====================================
   SERVICES HERO SECTION
==================================== */

.services-hero{
    position:relative;
    background: #F1F5F2;
    min-height:500px;

    width:88%;
    max-width:1350px;

    margin:50px auto;

    border-radius:32px;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
         rgba(0,0,0,0.65),
         rgba(0,0,0,0.10)
    ),
    url("Assets/Service_Page.jpg");

    background-size:cover;
    background-position:center;
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(216,176,106,.22),
        transparent 35%
    );

    z-index:1;
}

/* Decorative Blurs */

.hero-accent{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:1;
}

.hero-accent-1{
    width:220px;
    height:220px;

    background:#D8B06A;

    top:-40px;
    right:-40px;

    opacity:.35;
}

.hero-accent-2{
    width:180px;
    height:180px;

    background:#9BAE9B;

    bottom:-50px;
    left:-40px;

    opacity:.25;
}

/* Content */

.hero-content{
    position:relative;
    z-index:3;

    max-width:780px;

    text-align:center;

    padding:50px 30px;
}

/* Heading */

.hero-content h1{
    color:#F7F6F3;

    font-size:clamp(2.8rem,4.5vw,4.5rem);

    line-height:1.05;

    font-weight:700;

    margin-bottom:20px;

    letter-spacing:-1px;
}

/* Description */

.hero-content p{
    color:rgba(255,255,255,.92);

    font-size:1.05rem;

    line-height:1.8;

    max-width:650px;

    margin:0 auto 30px;
}

/* Actions */

.hero-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;

    flex-wrap:wrap;
}

/* Button */

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 30px;

    background:#D8B06A;

    color:#1F335C;

    text-decoration:none;

    border-radius:60px;

    font-weight:600;

    transition:.35s ease;

    box-shadow:
        0 10px 30px rgba(216,176,106,.25);
}

.hero-btn:hover{
    transform:translateY(-4px);

    background:#e0bb76;

    box-shadow:
        0 15px 40px rgba(216,176,106,.35);
}

.hero-btn i{
    transition:.3s;
}

.hero-btn:hover i{
    transform:translateY(4px);
}

/* Trust Badge */

.hero-trust{
    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 22px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border-radius:50px;

    color:#F7F6F3;

    font-size:13px;

    font-weight:500;
}

.hero-trust i{
    color:#D8B06A;
}

/* ====================================
   SERVICES SECTION
==================================== */

.services-section{
    padding:120px 0;
    background: #F1F5F2;
}

.services-header{
    width:85%;
    max-width:1200px;
    margin:0 auto 70px;
    text-align:center;
}

.services-tag{
    display: inline-block;
    padding: 12px 22px;

    border-radius: 50px;

    background: #C98A97;

    color: #1F335C;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

/* Services Grid */

.services-grid{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


/* Service Card */

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    height:420px;
    cursor:pointer;
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.service-card:hover img{
    transform:scale(1.1);
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.10)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
}

.service-overlay h3{
    color:#F7F6F3;
    font-size:28px;
    margin-bottom:12px;
}

.service-overlay p{
    color:rgba(255,255,255,0.9);
    font-size:15px;
    line-height:1.7;
}

/* Hover Effect */

.service-card:hover .service-overlay{
    background:linear-gradient(
        to top,
        rgba(31, 32, 32, 0.92),
        rgba(135, 133, 133, 0.25)
    );
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#1F335C;
    color:#F7F6F3;
    padding:80px 0 0;
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:60px;
}

/* Footer Logo */

.footer-logo{
    margin-bottom:20px;
}

.footer-logo img{
    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:18px;

    background:#fff;

    padding:8px;

    display:block;
}

.footer-brand p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    max-width:350px;
}
/* ==========================
   FOOTER BRAND
========================== */

.footer-logo-wrap{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.footer-main-logo{
    width:80px;
    height:80px;
    object-fit:contain;
    flex-shrink:0;
}

.footer-brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.footer-brand-text h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#F7F6F3;
    line-height:1.2;
}

.footer-brand-text span{
    margin-top:6px;
    color:#D8B06A;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.footer-brand p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    max-width:350px;
}
.footer-column h4{
    font-size:20px;
    margin-bottom:25px;
    color:#fff;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:15px;
}

.footer-column ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:all .3s ease;
    display:inline-block;
}

.footer-column ul li a:hover{
    color:#D8B06A;
    transform:translateX(5px);
}
.footer-brand-top{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:0px;
}

.footer-brand-top h3{
    margin:0;
    color:#fff;
}
/* Contact Info */

.contact-info li{
    display:flex;
    align-items:center;
    gap:12px;

    color:rgba(255,255,255,.75);
    margin-bottom:15px;
}

.contact-info li i{
    color:#D8B06A;
    width:20px;
    font-size:16px;
}

.contact-info li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

.contact-info li a:hover{
    color:#D8B06A;
}

/* Social Icons */

.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:rgba(255,255,255,.08);

    color:#fff;
    font-size:18px;

    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#D8B06A;
    color:#2e4b42;
    transform:translateY(-3px);
}

/* Footer Bottom */

.footer-bottom{
    width:100%;
    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;
    padding:25px 20px;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.7);
    font-size:15px;
    line-height:1.8;
}

.footer-bottom a{
    color:rgba(255,255,255,.7);
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#D8B06A;
    text-decoration:underline;
}


/* ====================================
   MOBILE ALIGNMENT STARTS HERE
==================================== */

html,
body{
    overflow-x:hidden;
    width:100%;
}

/*Mobile Header */
@media(max-width:768px){

    header{
        padding:15px 0;
    }
    nav ul li a{
        font-size:14px;
    }
}
/* ====================================
   HAMBURGER MENU
==================================== */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#1F335C;
    cursor:pointer;
}

/* MOBILE HEADER */

@media (max-width:768px){

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
        position:relative;
    }

    .logo{
        display:flex;
        align-items:center;
    }

    .logo img{
        width:65px;
    }

    .header-right{
        display:flex;
        align-items:center;
        gap:8px;
    }

    /* Small Social Icons */

    .social-icons{
        display:flex;
        gap:6px;
    }

    .social-icons a{
        width:32px;
        height:32px;
        font-size:14px;
    }

    /* Small Enquiry Button */

    .enquiry-btn{
        padding:8px 14px;
        font-size:12px;
        border-radius:20px;
        white-space:nowrap;
    }

}
@media (max-width:768px){

    /* Hide navigation initially */
    nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#F8F1E4;
        padding:20px 0;
        z-index:999;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .menu-toggle{
        display:block;
    }
}
/* ====================================
   TABLET(Hero section)
==================================== */

@media(max-width:992px){

    .services-hero{
        width:92%;
        min-height:480px;
    }

    .hero-content h1{
        font-size:3.4rem;
    }
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:768px){

    .services-hero{
        width:94%;

        min-height:450px;

        margin:30px auto;

        border-radius:24px;
    }

    .hero-content{
        padding:40px 20px;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:1rem;
        line-height:1.7;
    }

    .hero-actions{
        flex-direction:column;
        gap:15px;
    }

    .hero-btn{
        width:100%;
        max-width:260px;
        justify-content:center;
    }

    .hero-trust{
        width:100%;
        max-width:280px;
        justify-content:center;
    }
}

/* ====================================
   SERVICES SECTION TABLET
==================================== */

@media(max-width:992px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

}

/* ====================================
   SERVICES SECTION MOBILE
==================================== */

@media(max-width:768px){

    .services-section{
        padding:80px 0;
    }

    .services-header{
        width:90%;
        margin:0 auto 50px;
    }

    .services-header h2{
        font-size:2rem;
        line-height:1.2;
    }

    .services-header p{
        font-size:16px;
        line-height:1.7;
    }

    .services-tag{
        padding:10px 20px;
        font-size:12px;
        letter-spacing:2px;
    }

    .services-grid{
        width:90%;
        grid-template-columns:1fr;
        gap:25px;
    }

    .service-card{
        height:380px;
        border-radius:24px;
    }

    .service-overlay{
        padding:25px;
    }

    .service-overlay h3{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:10px;
    }

    .service-overlay p{
        font-size:16px;
        line-height:1.7;
    }

}

/* ====================================
   FOOTER SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .footer{
        padding:60px 0 0;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    /* Brand Section */

    .footer-brand-top{
        flex-direction:column;
        gap:15px;
    }

    .footer-logo-wrap{
        flex-direction:column;
        gap:15px;
    }

    .footer-main-logo{
        width:70px;
        height:70px;
    }

    .footer-brand-text h3{
        font-size:24px;
    }

    .footer-brand p{
        max-width:100%;
        margin:auto;
    }

    /* Footer Columns */

    .footer-column h4{
        margin-bottom:15px;
    }

    .footer-column ul li{
        margin-bottom:12px;
    }

    /* Contact Info */

    .contact-info li{
        justify-content:center;
        text-align:center;
    }

    /* Social Icons */

    .footer-social{
        justify-content:center;
        margin-top:20px;
    }

    .footer-social a{
        width:42px;
        height:42px;
        font-size:16px;
    }

    /* Bottom Copyright */

    .footer-bottom{
        margin-top:40px;
        padding:20px 15px;
    }

    .footer-bottom p{
        font-size:14px;
        line-height:1.7;
    }

}
